202507091139 karabiner left_control to caps_lock
202507091139 karabiner left_control to caps_lock
{
"description": "Left Control → tap for CapsLock, hold or with other keys = Control (no delay)",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "left_control",
"modifiers": {
"optional": ["any"]
}
},
"to_if_alone": [
{
"key_code": "caps_lock"
}
],
"to": [
{
"key_code": "left_control"
}
]
}
]
}
to_if_alone
:只有按下 left_control
并松开,没有其他键按下时,触发 Caps Lock。
to
:其余情况,包括组合键(如 Ctrl+C
、Cmd+Ctrl+V
)全部正常发送 Control
。